github.com/klauspost/compress/zstd.sequenceDecs.literals (field)
40 uses
github.com/klauspost/compress/zstd (current package)
blockdec.go#L472: hist.decoders.literals = literals
blockdec.go#L488: b.dst = append(b.dst, hist.decoders.literals...)
blockdec.go#L626: println("Literals:", len(seqs.literals), "hash:", xxhash.Sum64(seqs.literals), "and", seqs.nSeqs, "sequences.")
blockdec.go#L661: hist.decoders.seqSize = len(hist.decoders.literals)
blockdec.go#L709: hist.decoders.out, hist.decoders.literals = nil, nil
decoder.go#L692: hist.decoders.literals = block.async.literals
decoder.go#L785: hist.decoders.literals = block.async.literals
decoder.go#L841: block.async.literals = hist.decoders.literals
seqdec.go#L69: literals []byte
seqdec.go#L132: printf("Execute %d seqs with hist %d, dict %d, literals: %d into %d bytes\n", len(seqs), len(hist), len(s.dict), len(s.literals), s.seqSize)
seqdec.go#L140: copy(out[t:], s.literals[:seq.ll])
seqdec.go#L142: s.literals = s.literals[seq.ll:]
seqdec.go#L208: copy(out[t:], s.literals)
seqdec.go#L210: t += len(s.literals)
seqdec.go#L312: if ll > len(s.literals) {
seqdec.go#L313: return fmt.Errorf("unexpected literal count, want %d bytes, but only %d is available", ll, len(s.literals))
seqdec.go#L338: out = append(out, s.literals[:ll]...)
seqdec.go#L339: s.literals = s.literals[ll:]
seqdec.go#L427: if size := len(s.literals) + len(out) - startSize; size > maxBlockSize {
seqdec.go#L432: s.out = append(out, s.literals...)
seqdec_amd64.go#L91: litRemain: len(s.literals),
seqdec_amd64.go#L94: literals: s.literals,
seqdec_amd64.go#L158: s.literals = s.literals[ctx.litPosition:]
seqdec_amd64.go#L163: s.out = append(s.out, s.literals...)
seqdec_amd64.go#L165: t += len(s.literals)
seqdec_amd64.go#L247: litRemain: len(s.literals),
seqdec_amd64.go#L293: len(s.literals), len(s.literals)-ctx.litRemain)
seqdec_amd64.go#L347: printf("Execute %d seqs with literals: %d into %d bytes\n", len(seqs), len(s.literals), s.seqSize)
seqdec_amd64.go#L360: literals: s.literals,
seqdec_amd64.go#L364: if cap(s.literals) < len(s.literals)+compressedBlockOverAlloc {
seqdec_amd64.go#L373: s.literals = s.literals[ctx.litPosition:]
seqdec_amd64.go#L377: copy(out[t:], s.literals)
seqdec_amd64.go#L379: t += len(s.literals)
 |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |